type encoding/json.field
16 uses
encoding/json (current package)
encode.go#L712: list []field
encode.go#L713: byExactName map[string]*field
encode.go#L714: byFoldedName map[string]*field
encode.go#L1069: type field struct {
encode.go#L1095: current := []field{}
encode.go#L1096: next := []field{{typ: t}}
encode.go#L1105: var fields []field
encode.go#L1175: field := field{
encode.go#L1239: next = append(next, field{name: ft.Name(), index: index, typ: ft})
encode.go#L1245: slices.SortFunc(fields, func(a, b field) int {
encode.go#L1293: slices.SortFunc(fields, func(i, j field) int {
encode.go#L1301: exactNameIndex := make(map[string]*field, len(fields))
encode.go#L1302: foldedNameIndex := make(map[string]*field, len(fields))
encode.go#L1319: func dominantField(fields []field) (field, bool) {
encode.go#L1324: return field{}, false